home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wdj0797.zip / ZOLMAN.ZIP / TOPFRAME.CPP < prev    next >
C/C++ Source or Header  |  1996-11-18  |  715b  |  36 lines

  1. // TopFrame.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "MySplitter.h"
  6. #include "TopFrame.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CTopFrame
  16.  
  17. IMPLEMENT_DYNCREATE(CTopFrame, CFrameWnd)
  18.  
  19. CTopFrame::CTopFrame()
  20. {
  21. }
  22.  
  23. CTopFrame::~CTopFrame()
  24. {
  25. }
  26.  
  27.  
  28. BEGIN_MESSAGE_MAP(CTopFrame, CFrameWnd)
  29.     //{{AFX_MSG_MAP(CTopFrame)
  30.         // NOTE - the ClassWizard will add and remove mapping macros here.
  31.     //}}AFX_MSG_MAP
  32. END_MESSAGE_MAP()
  33.  
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CTopFrame message handlers
  36.